home *** CD-ROM | disk | FTP | other *** search
- -- card: 5355 from stack: in.0
- -- bmap block id: 6211
- -- flags: 0000
- -- background id: 2781
- -- name:
-
-
- -- part 1 (field)
- -- low flags: 00
- -- high flags: 4007
- -- rect: left=212 top=197 right=250 bottom=423
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 3
- -- text size: 9
- -- style flags: 0
- -- line height: 12
- -- part name: Note 1
-
-
- -- part 2 (button)
- -- low flags: 00
- -- high flags: C002
- -- rect: left=212 top=179 right=197 bottom=290
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Note
- ----- HyperTalk script -----
- *NoteButtonScript*4.0
- on mouseup
- send NoteButtonMouseUp
- end MouseUp
-
- ****This note created 2/23/88
- MemoNotes‚Ñ¢ Hypernote system
- ©1988 PeterFraterdeus
- CIS 73306,2703
- ShareWare-$15. to: Alphabets, Inc.
- 804 Dempster St./ Evanston, IL. 60202
-
-
-
- -- part 3 (button)
- -- low flags: 00
- -- high flags: 4002
- -- rect: left=406 top=250 right=267 bottom=423
- -- title width / last selected line: 0
- -- icon id / first selected line: 1018 / 1018
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Grow
- ----- HyperTalk script -----
- NoteGrowButton
- **
- on mousedown
- send NoteGrowMouseDown
- end mousedown
- ***
- on mouseup
- send NoteGrowMouseUp
- end mouseUp
- ****
- on showGrow
- send showGrowButton
- end showGrow
-
- MemoNotes‚Ñ¢ Hypernote system
- ©1988 PeterFraterdeus
- CIS 73306,2703
- ShareWare-$15. to: Alphabets, Inc.
- 804 Dempster St./ Evanston, IL. 60202
-
-
-
- -- part 7 (field)
- -- low flags: 00
- -- high flags: 4007
- -- rect: left=212 top=106 right=175 bottom=423
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 3
- -- text size: 9
- -- style flags: 0
- -- line height: 12
- -- part name: Note 7
- ----- HyperTalk script -----
- on Perform
- --end perform -- comment out to perform field
- choose button tool
- put "" into card field "button List"
- repeat with n =1 to the number of card buttons
- put n &"-"& the short name of btn n & "-"&the Loc of btn n &return after card field "button list"
- end repeat
- choose browse tool
- end perform
-
-
- end Perform
- on closefield
- send DoMeCloseField
- end closefield
- on MouseDown
- send NoteFieldMouseDown
- end MouseDown
-
-
-
- -- part 8 (button)
- -- low flags: 00
- -- high flags: C002
- -- rect: left=212 top=88 right=106 bottom=313
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Do Me Note
- ----- HyperTalk script -----
- *DoMeNoteButtonScript*4.0 -- 23Feb1988
- on MouseDown
- global gSelection
- put selection into gSelection
- pass mousedown
- end MouseDown
-
- on MouseUp
- send DoMeMouseUp
- end MouseUp
-
- ****
- Do Me Notes™ ©1988
- Interactive Fields from MemoNotes
- ****This note created 2/23/88
- MemoNotes‚Ñ¢ Hypernote system
- ©1988 PeterFraterdeus
- CIS 73306,2703
- ShareWare-$15. to: Alphabets, Inc.
- 804 Dempster St./ Evanston, IL. 60202
-
-
-
-
- -- part 9 (button)
- -- low flags: 00
- -- high flags: 4002
- -- rect: left=406 top=175 right=192 bottom=423
- -- title width / last selected line: 0
- -- icon id / first selected line: 1018 / 1018
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Grow
- ----- HyperTalk script -----
- NoteGrowButton
- **
- on mousedown
- send NoteGrowMouseDown
- end mousedown
- ***
- on mouseup
- send NoteGrowMouseUp
- end mouseUp
- ****
- on showGrow
- send showGrowButton
- end showGrow
-
- MemoNotes‚Ñ¢ Hypernote system
- ©1988 PeterFraterdeus
- CIS 73306,2703
- ShareWare-$15. to: Alphabets, Inc.
- 804 Dempster St./ Evanston, IL. 60202
-
-
-
- -- part 16 (button)
- -- low flags: 00
- -- high flags: 8002
- -- rect: left=290 top=292 right=310 bottom=420
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: TransferScripts
- ----- HyperTalk script -----
- --This is a development tool for creating script writing scripts.
- --The concept is to create a working model of the object (a note button
- --in this case) and this script will create a chunk of
- --imbedded script that can be copied to the object creating script.
- --Operating on this script, the result (created in the script of
- --"tempbutton") would start like this:
- -- put"on mouseup"&return after NoteButtonScript
- -- put" global tempscript"&return after NoteButtonScript
- --"NoteButtonScript" is a varible local to the object creating script.
- --"Fieldid" is any calculated and changing information, keyed to the
- --quoted text in TargText
- --Doesn't change "quoted" String constants (ie. "a Constant")
- --these require manual fix.
- on mouseUp
- put "" into tempscript
- put "" into targText
- put "put"&Quote into Frag1
- put quote&"&return after NoteButtonScript"&return into Frag2
- put the script of button "Test Button" into it -- change template here
- repeat with n = 1 to the number of lines in it
-
- repeat while line n of it contains targText
- put quote&"&&Fieldid&&""e into char offset (targText,line n of it)-1 to offset (targText,line n of it)+length(targText)+3 of line n of it
- end repeat
- put Frag1&line n of it &Frag2 after tempScript
- end repeat
- set the script of button tempbutton to tempscript
- end mouseUp
-
- Used for the MemoNotes‚Ñ¢ System
- ©1988 Peter Fraterdeus
- CIS 73306,2703
-
-
-
- -- part 17 (button)
- -- low flags: 00
- -- high flags: A002
- -- rect: left=290 top=274 right=292 bottom=420
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: TempButton
-
-
- -- part 18 (button)
- -- low flags: 00
- -- high flags: 8003
- -- rect: left=305 top=253 right=275 bottom=401
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Test Button
-
-
- -- part 101 (field)
- -- low flags: 00
- -- high flags: 4007
- -- rect: left=38 top=157 right=272 bottom=208
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 3
- -- text size: 9
- -- style flags: 0
- -- line height: 12
- -- part name: Button List
-
-
- -- part contents for card part 1
- ----- text -----
- This Page is for experimenting with DoMe Notes! Have Fun!
- The DoMe above puts a list of all the buttons on the card, with their locations, into the field at the left.
-
- -- part contents for card part 7
- ----- text -----
- --end perform -- comment out to perform field
- choose button tool
- put "" into card field "button List"
- repeat with n =1 to the number of card buttons
- put n &"-"& the short name of btn n & "-"&the Loc of btn n &return after card field "button list"
- end repeat
- choose browse tool
- end perform
-
-
-
- -- part contents for background part 31
- ----- text -----
- Version 4.1.1